home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / bucket.cpp < prev    next >
C/C++ Source or Header  |  1999-03-14  |  2KB  |  62 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- // 
  5. // C++ Source Code File Name: bucket.cpp 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer  
  8. // File Creation Date: 02/07/1997  
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ------------- Program Description and Details ------------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. The cache bucket class is derived from the Bucketb class,
  32. creating a family of classes specific to the data type stored.
  33. Both of the cache bucket classes are used to keep addresses
  34. and memory buffers paired together, to prevent a file-based
  35. object's address from being associated with the wrong memory
  36. buffer.
  37. */
  38. // ----------------------------------------------------------- //   
  39.  
  40. #ifdef __NOT_USING_TEMPLATE_CLASS__
  41. #include "bucket.h"
  42.  
  43. void Bucket::Fetch(VBDFile &f)
  44. {
  45.   // Fetch only the TYPE portion of the bucket
  46.   f.Read((TYPE *)this, sizeof(TYPE), Address);
  47.   Dirty = 0;
  48. }
  49.  
  50. void Bucket::Store(VBDFile &f)
  51. {
  52.   // Store only the TYPE portion of the bucket
  53.   f.Write((TYPE *)this, sizeof(TYPE), Address);
  54.   Dirty = 0;
  55. }
  56.  
  57. #endif // __NOT_USING_TEMPLATE_CLASS__
  58. // ----------------------------------------------------------- // 
  59. // ------------------------------- //
  60. // --------- End of File --------- //
  61. // ------------------------------- //
  62.